home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / mm-0.90 / help / TOP.DIR / print.HLP < prev    next >
Encoding:
Text File  |  1990-12-18  |  1.7 KB  |  37 lines

  1. PRINT  -  print messages
  2.  
  3. Usage:  PRINT [/switch] [message-sequence]
  4.   Unless specified, the message-sequence is "current".
  5.  
  6. The PRINT command sends the messages to a printer, as determined by the 
  7.   MM variable PRINT-FILTER.  By default, it uses /usr/local/bin/print, 
  8.   which asks you what printer you want (and offers a list) unless you have
  9.   a printer defined in your .profile file.  Students can use CUCCA's
  10.   printers in the Int Affairs and Mudd micro labs (etc); see the lab
  11.   consultant for printer names and capabilities.
  12.  
  13. If you are using MS-Kermit and have a printer directly attached to
  14.   your PC, you can use a print command called pcprint.  Type
  15.   "help set print-filter" to see how to customize printing.
  16.  
  17. The optional switch "/separate-pages" puts a page break between messages,
  18.   if you are PRINTing more than one.  The prefix LITERAL will force
  19.   printing of all header fields regardless of any settings of SET DONT-
  20.   PRINT-HEADERS and SET ONLY-PRINT-HEADERS.
  21.   
  22. Examples:
  23.     MM>print 2:6          #print messages 2 through 6
  24.     MM>print /separate-pages 2:6  #put page breaks between messages
  25.     MM>literal print 2:6          #print the message with all header fields
  26.  
  27. PRINT is somewhat similar to LIST.  For example, you can print with the
  28.   LIST command by specifying a shell print command.  The following...
  29.       MM>list |"lpr -Piab1" 15  
  30.   ...uses the lpr command to print message 15 to the printer "iab1".  
  31.   You can also write your own program accepting standard input, and 
  32.   SET PRINT-FILTER to its name.  
  33.  
  34. For more help, type "help" and one of these topics:
  35.   message-sequence   literal   list   message-handling
  36.   set print-filter   set dont-print-headers   set only-print-headers  
  37.